home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / pascal / ptrp10.zip / TEST8.TRP < prev    next >
Text File  |  1994-05-17  |  187b  |  10 lines

  1. procedure main
  2.         local 
  3.                 v : integer = 1
  4.         endVar
  5.         repeat
  6.                 v := v * 2
  7.                 writeln(v)
  8.         until (v > 100)
  9. endproc
  10.